home *** CD-ROM | disk | FTP | other *** search
/ Celestin Apprentice 5 / Apprentice-Release5.iso / Environments / Prograph Classic 2.6.1 / Prograph Tutorial Manual / Prograph Tutorial / Prograph Tutorial.rsrc / TEXT_148.txt < prev    next >
Encoding:
Text File  |  1995-10-16  |  14.1 KB  |  164 lines

  1. t    User-interface Development Systems
  2.  
  3. *1126*Highly interactive graphical*401* user interfaces have significantly simplified the use of standard application software packages. And the quality of the user interface has quickly become one of the primary criteria of acceptance for most new software.16
  4.  
  5. *1128*Developing a good user interface, however, is one of the most problematic*1129* components of producing a software system. Design issues are complex, and implementation and subsequent modification of a user interface can be error-prone and expensive. For many software developers, the cost of providing a high-quality user interface system is a large portion of the overall cost of putting together a new software product. This is especially true for more specialized applications, which must be tailored to the needs of individual users. 
  6.  
  7. The whole issue of user-interface improvement has been motivating researchers since the early 1980‚Äôs to find new methods in user-interface technology and to develop new tools that allow end users to produce their own specialized applications. Today, there are two broad categories of systems available for constructing graphical user interfaces: user-interface management systems and interface *501* toolkits.
  8.  
  9.  What Is a User-interface Management System?
  10.  
  11. *1131**1137*A User-interface Management System (UIMS) is a software system that facilitates construction of a graphical user interface by separating out the user interface from the application components of a computer program. The code that implements the user interface is completely separated from the code for the application itself. This separation enables a UIMS to support independent specification and management of the interface through high-level tools and facilities.17
  12.  
  13. UIMS does not implement any application code. It abstracts the syntax and semantics of the user interface so that interface designers and even end users can modify the interface quickly without having extensive knowledge of the application being developed. Knowledge of programming is also not usually required, although this is an issue with mixed appeal. 
  14.  
  15. A UIMS generally uses a special purpose language or some formal specification‚Äîsuch as state transition diagrams, constraint grammars, or menu trees‚Äîto describe what the interface looks like and the kinds of interactions it supports.18  So interface developers need not be professional programmers; they need only understand the tools of the UIMS they are using.
  16.  
  17. Because UIMS software is based on abstracting basic elements from contemporary user interfaces, some critics argue that UIMS packages will become obsolete as quickly as user-interface technology itself develops. Others claim that separating a user interface from its application is overly contrived. The user interface and application are linked in many respects, both obvious and subtle. An arbitrary separation of one from the other, some argue, impairs rather than facilitates interface development.19
  18.  
  19. There is a conflict between the potential benefits of UIMS technology and the concerns of developers over its utility. At the same time, there is a real need for application interface-development systems. 
  20.  
  21. Interface designers, some of whom are nonprogrammers, require a tool that allows them to prototype and evaluate interface designs. And programmers require a tool that allows them to implement user interfaces efficiently. A growing assumption among researchers is that the second alternative ‚Äî application-interface toolkits ‚Äî can provide a solution.20*1139* 
  22.  
  23. What Is an Application-interface Toolkit?
  24.  
  25. *1130*Unlike a UIMS, an application-interface toolkit provides a more general-purpose programming language for building user interfaces. Further, a toolkit is not totally separated from the application. And it usually does implement application code.
  26.  
  27. Interface toolkits do not all provide the same general range of utilities. Some toolkits are object-oriented*502* systems and some are not. Each toolkit provides its own set of interface-development tools. And some toolkits are specifically aimed at developing interfaces for a specific kind of application. 
  28.  
  29. For example, some interface toolkits that are aimed at document-processing applications actually include objects that comprise the data to be edited. The objects are in the form of text, bitmaps, spreadsheets, or animation editors, which can then be embedded into multimedia documents processed in the application.
  30.  
  31. Other toolkits are specifically aimed at specifying the layout of interface components‚Äîthat is, the spatial positioning of components on the screen. These toolkits provide a set of composite classes for interface components. The composite objects maintain pointers to specific functions that control the proper layout of the interface components. Then, if you want to change the layout of the interface components, only the programming function needs to be replaced at runtime.21
  32.  
  33. More sophisticated toolkits allow both the objects of the interface system as well as constraints between them to be specified.22  By designing in such constraints, dependencies between individual pieces of data can be enforced. This capability is required of any toolkit designed for working with graphical components of an interface. You often need to guarantee that two visually connected objects always stay connected even if one of them is translated.
  34.  
  35. Among the best known user-interface development kits are the *1136* object-oriented toolkits. As with other object-oriented systems, there is a cloud of myth and mystery surrounding the power they provide. Long-time developers probably remember one of the earliest OOP toolkits‚Äîthe Smalltalk*990* Model-View-Controller (MVC)*1133*.23  Although the MVC toolkit carries with it some general advantages in being object-oriented, it does not carry the OOP punch that newer toolkits offer developers today.
  36.  
  37. MVC splits interface components into model, view, and controller elements‚Äîeach responsible for part of the total function required for handling an interface component. For example, controllers handle only input, and views take care of only output. Because responsibility for handling input and output are not consolidated into a single object, many objects are required in the system. Since objects must communicate in order to handle a component, the costs in communication overhead make MVC less efficient than a simpler, more consolidated toolkit.
  38.  
  39. Although MVC does not offer the power everyone expects from object-oriented technology, newer OOP toolkits do offer powerful flexibility without compromising efficiency. For example, Macintosh users are increasingly using Apple‚Äôs*548* MacApp implementation of the ‚Äúlook and feel‚Äù of Macintosh applications.24  While specialized editors are being developed to facilitate access to and modification of MacApp classes, many feel that the resources required by MacApp and its associated MPW environment are too great, in terms of size, complexity and learning time, for most corporate and business development environments.
  40.  
  41.  How Does Prograph Face the Interface?
  42.  
  43. Prograph‚Äôs Application *1127*Builder*52* is an object-oriented, graphical application-interface toolkit*46* that seamlessly integrates the Prograph development environment with the Macintosh ROM-based*951* toolbox and operating system managers to implement the full Mac interface.
  44.  
  45.  
  46.  
  47.  
  48.  
  49.  
  50.  
  51.  
  52.  
  53.  
  54.  
  55.  
  56.  
  57.  
  58.  
  59.  
  60.  
  61.  
  62.  
  63. Prograph provides a hierarchy of system classes for interface development. 
  64.  
  65. Prograph‚Äôs object-oriented interface toolkit*924* includes a set of System classes. These classes provide the high-level components necessary for building interface objects. Specific instances of these classes can be specified to provide a wide range of desired interfaces. And special System class editors are used to set basic attributes.
  66.  
  67.  
  68.  
  69.  
  70.  
  71.  
  72.  
  73.  
  74.  
  75.  
  76.  
  77.  
  78.  
  79.  
  80.  
  81.  
  82.  
  83.  
  84.  
  85.  
  86.  
  87.  
  88.  
  89.  
  90.  
  91.  
  92.  
  93.  
  94.  
  95.  
  96.  
  97.  
  98.  
  99.  
  100.  
  101. Special System class editors*56* are part of the Prograph interface toolkit.
  102.  
  103. The interface toolkit facilities that Prograph provides are an extension of the environment provided by the editor and interpreter and follow the same design principles. That is, the design of the interface is integrated with its testing in a complete top-down (or look-to-feel) fashion. Once initial menus and windows have been graphically designed and installed, the application can be immediately run. 
  104.  
  105. *1134*User and system events trigger calls to user methods that may not yet exist but that can be created and edited on the fly. By its seamless integration, a Prograph application and the editor run concurrently. The application can be paused and the Application Builder editors used to modify and extend elements of the user interface. New menus, windows, and interface controls within existing windows can be added and the application resumed with new functionality.
  106.  
  107. With this dynamic run-edit-design-run cycle, *876*Prograph applications*47* take shape and evolve at a much faster rate than those developed in traditional environments requiring complex, sequential edit-link-compile-run cycles. The Prograph code you write is largely related to functional aspects of the application‚Äôs computation. The voluminous lines of code necessary to create and manage elements of the user interface are gone in Prograph. You use Application Builder editors to show Prograph what the interface looks like and to specify functional dependencies between interface elements.
  108.  
  109. Using Application Builder, you are continually showing Prograph what your application looks like and how it behaves, rather than telling it these things by writing code. As has been said, ‚ÄúBy showing instead of telling a program what to do, 50-90 percent of an application can be developed without explicit programming, increasing productivity two-ten fold.‚Äù25
  110.  
  111. With these conceptual foundations in mind, you are ready to pursue the Tutorials in Part 2. 
  112.  
  113. t References
  114.  
  115. 1.  Nan C. Shu, Visual Programming (Visual Nostrand Reinhold, 1988).
  116.  
  117. 2.  W. C. Donelson, ‚ÄúSpatial Management of Information,‚Äù Proceedings of ACM SIGGRAPH'78 (August 1978), pp. 203‚Äì9; ref: Spatial Data Management Systems (SDMS).
  118.  
  119. 3.  K. J. Goldman et al., ‚ÄúISIS: Interface for a Semantic Information System,‚Äù Proceedings of ACM SIGMOD International Conference on the Management of Data (May 1985), pp. 328‚Äì42.
  120.  
  121. 4.  S. K. Chang et al., ‚ÄúDesign Considerations of a Pictorial Database System,‚Äù International Journal on Policy Analysis and Information Systems, 1:2 (January 1978), pp. 49‚Äì70, ref: The Graphics-Oriented Relational Algebraic Interpreter (GRAIN); and N. Roussopoulos and D. Leifker, ‚ÄúAn Introduction to PSQL: A Pictorial Structured Query Language,‚Äù Proceedings of the 1984 IEEE Computer Society Workshop on Visual Languages, Hiroshima, Japan (December 1984), pp. 77‚Äì87.
  122.  
  123. 5.  M. Hirakawa et al., ‚ÄúHI-VISUAL: A Language Supporting Visual Interaction in Programming,‚Äù in Visual Languages, S. K. Chang et al., ed. (Plenum Press, 1986), pp. 233‚Äì59.
  124.  
  125. 6.  R. P. Taylor, Programming Primer (Addison-Wesley, 1982), ref: First Programming Language (FPL); B. E. J. Clark and S. K. Robinson, ‚ÄúA Graphically Interacting Program Monitor,‚Äù The Computer Journal, 26:3 (June 1983), pp. 235‚Äì8; M. C. Pong and N. Ng, ‚ÄúPIGS‚ÄîA System for Programming with Interactive Graphical Support,‚Äù Software‚ÄîPractice and Experience, 13:9 (September 1983), pp. 847‚Äì55; and M. B. Albizuri-Romero, ‚ÄúGRASE‚ÄîA Graphical Syntax Directed Editor for Structured Programming,‚Äù ACM SIGPLAN Notices, 19:2 (February 1984), pp.28‚Äì37.
  126.  
  127. 7.  M. M. Zloof, ‚ÄúQuery-By-Example,‚Äù Proceedings of the National Computer Conference (May 1975), pp. 431‚Äì8.
  128.  
  129. 8.  S. B. Yao et al., ‚ÄúFORMANAGER: An Office Forms Management System,‚Äù ACM  Transactions of Office Information Systems, 2:3 (July 1984), pp. 235‚Äì62; and N. C. Shu, ‚ÄúFORMAL: A Forms-Oriented and Visual-Directed Application System,‚Äù IEEE Computer, 18:8 (August 1985), pp. 38‚Äì49.
  130.  
  131. 9.  Shu, Visual Programming.
  132.  
  133. 10.  L. J. Pinson and R. J. Wiener, An Introduction to Object-Oriented Programming and Smalltalk (Addison-Wesley, 1988).
  134.  
  135. 11.  J. B. Dennis, ‚ÄúData Flow Supercomputers,‚Äù in Selected Reprints on Dataflow and Reduction Architectures (Computer Society Press of the IEEE, 1987), pp. 102‚Äì10.
  136.  
  137. 12.  W. B. Ackerman, ‚ÄúData Flow Languages,‚Äù in Selected Reprints on Dataflow and Reduction Architectures (Computer Society Press of the IEEE, 1987), pp. 179‚Äì88.
  138.  
  139. 13.  Arvind and D. E. Culler, ‚ÄúDataflow Architectures,‚Äù in Selected Reprints on Dataflow and Reduction Architectures (Computer Society Press of the IEEE, 1987), pp. 79‚Äì101.
  140.  
  141. 14.  Ackerman, ‚ÄúData Flow Languages.‚Äù
  142.  
  143. 15.  A. L. Davis and R. M. Keller, ‚ÄúData Flow Program Graphs,‚Äù in Selected Reprints on Dataflow and Reduction Architectures (Computer Society Press of the IEEE, 1987), pp. 189‚Äì204.
  144.  
  145. 16.  J. F. Desoi, W. M. Lively, and S. V. Sheppard, ‚ÄúGraphical Specification of User Interfaces with Behavior Abstraction,‚Äù in Proceedings of CHI'89, conference held in Austin, Texas, 30 April‚Äì4 May, 1989 (New York: ACM, 1989), pp. 139‚Äì44.
  146.  
  147. 17.  M. A. Linton, J. M. Vlissides, and P. R. Calder, ‚ÄúComposing User Interfaces with InterViews,‚Äù IEEE Computer, 22:2 (February 1989), pp. 8‚Äì22.
  148.  
  149. 18.  See various papers in Proceedings of CHI'89.
  150.  
  151. 19.  J. M. Manheimer, R. C. Burnett, and J. A. Wallers, ‚ÄúA Case Study of User Interface Management System Development and Applications,‚Äù in Proceedings of CHI'89, pp. 127‚Äì32.
  152.  
  153. 20.  Manheimer, ‚ÄúA Case Study.‚Äù
  154.  
  155. 21.  A. J. Palay et al., ‚ÄúThe Andrew Toolkit: An Overview,‚Äù Proceedings, 1988 Winter USENIX (February 1988), pp. 9‚Äì21, as cited in Linton, ‚ÄúComposing User Interfaces.‚Äù
  156.  
  157. 22.  P. S. Barth, ‚ÄúAn Object-Oriented Approach to Graphical Interfaces,‚Äù ACM Transactions on Graphics, 5:2 (April 1986), pp. 142‚Äì72.
  158.  
  159. 23.  G. E. Krasner and S. T. Pope, ‚ÄúA Cookbook for Using the Model-View-Controller User Interface Paradigm in Smalltalk-80,‚Äù Journal of Object-Oriented Programming, 1:3 (August-September, 1988), pp. 26‚Äì49.
  160.  
  161. 24.  Apple Programmer‚Äôs and Developer‚Äôs Association, MacApp: The Expandable Macintosh Application (Renton Washington, 1987).
  162.  
  163. 25.  T. G. Lewis et al., ‚ÄúPrototypes from Standard User Interface Management Systems,‚Äù IEEE Computer, 22:5 (May 1989), pp. 51‚Äì60.
  164.